Skip to content

Flow anomaly list

Description

Tokens on CEX spot/perp showing major-flow anomalies.

Use cases

  • Real-time names with tactical upside / volatility in up or chop regimes
  • Unusual institutional / whale flow on retail rails

Tips

  • NL: “anomaly”, “flow bullish” → this list; label as flow-anomaly bullish monitor set
  • NL overlap with generic “upside tokens” → still use list but clarify flow-driven

Update: Every 5 minutes

Endpoint

  • Method: POST
  • Path: /open/v1/ai/getFundsCoinList

Credits

  • Cost: 3

Prerequisites

None.

Request body

{}

Response — data[]

FieldTypeSerializedDescription
updateTimelonglongUpdated at (ms)
tradeTypeintegerinteger1 spot / 2 perp / 3 delivery
vsTokenIdlongstringToken id
symbolstringstringTicker
namestringstringName
startTimelonglongAnomaly start (ms)
endTimelonglongAnomaly end (ms)
number24hintegerintegerShort-window anomaly count (24h)
numberNot24hintegerintegerTrend-window count (~3m)
pricenumberstringPrice (USD)
pushPricenumberstringFirst-push price
gainsnumbernumberGain after push (%)
declinenumbernumberDrawdown after push (%)
percentChange24hnumberstring24h %
marketCapnumberstringMCap
alphabooleanbooleanAlpha flag
fomobooleanbooleanFOMO
fomoEscalationbooleanbooleanFOMO heat-up
bullishRationumbernumberBull share

Semantics

FieldMeaningTip
startTime / endTimeEpisode boundsDuration of anomaly cluster
number24hHigh-frequency anomaliesMore → more active tape
numberNot24hSlower anomaliesStructural shifts
pushPriceBaselinePost-push performance
alphaOdd-lot smart flowtrue → watch closely
fomoChasingContinuation odds vs trap
fomoEscalationOverheatTail risk

tradeType

ValueMeaning
1Spot
2Perpetual
3Delivery

Example

json
{}

cURL (Linux/macOS)

bash
curl --location --request POST 'http://${host}/api/open/v1/ai/getFundsCoinList' \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: xxxxx' \
--header 'X-TIMESTAMP: xxxxx' \
--header 'X-SIGN: xxxxx' \
--header 'Accept: */*' \
--data-raw '{}'

cURL (Windows CMD)

cmd
curl --location --request POST "http://${host}/api/open/v1/ai/getFundsCoinList" ^
--header "Content-Type: application/json" ^
--header "X-API-KEY: xxxxx" ^
--header "X-TIMESTAMP: xxxxx" ^
--header "X-SIGN: xxxxx" ^
--header "Accept: */*" ^
--data-raw "{}"

Sample success

json
{
    "code": 200,
    "message": "success",
    "data": [
        {
            "updateTime": 1773395400000,
            "tradeType": 2,
            "vsTokenId": "22974",
            "symbol": "TAO",
            "name": "Bittensor",
            "startTime": 1773297600000,
            "endTime": 1773395400000,
            "number24h": 7,
            "numberNot24h": 1,
            "price": "237.5",
            "pushPrice": "205.7",
            "gains": 19.202722,
            "decline": 1.069519,
            "percentChange24h": "4.56494468",
            "marketCap": "2555201474.4451013",
            "alpha": true,
            "fomo": false,
            "fomoEscalation": false,
            "bullishRatio": 0.5569
        }
    ],
    "requestId": "xxx-xxx-xxx"
}